307eaf9d643a8d39b274477189de3ec08b1e95ff,src/main/java/tachyon/MasterInfo.java,MasterInfo,createRawTable,#String#number#List#,338
Before Change
public int createRawTable(String path, int columns, List<Byte> metadata)
throws FileAlreadyExistException, InvalidPathException, TableColumnException {
String parameters = CommonUtils.parametersToString(path, columns);
LOG.info("user_createRawTable" + parameters);
if (columns <= 0 || columns >= Config.MAX_COLUMNS) {
throw new TableColumnException("Column " + columns + " should between 0 to " +
After Change
public int createRawTable(String path, int columns, List<Byte> metadata)
throws FileAlreadyExistException, InvalidPathException, TableColumnException {
LOG.info("createRawTable" + CommonUtils.parametersToString(path, columns));
if (columns <= 0 || columns >= Config.MAX_COLUMNS) {
throw new TableColumnException("Column " + columns + " should between 0 to " +